home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ ASP Adv Options 1.xpl < prev    next >
Text File  |  2000-08-07  |  1KB  |  47 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="2"
  4. "UIPATH"="Internet\Internet Information Server\ASP Settings"
  5. "NAME"="Advanced Settings"
  6. "VERSION"="1.11"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Script Language"
  9. "TEXT 2"="Error Message"
  10. "DESCRIPTION 1"="Script Language: The script language used if no "@LANGUAGE=" command has been found in the ASP page."
  11. "DESCRIPTION 2"="Error Message: Specifies the message send to the client if "Send detailed error-information" is disabled."
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16.  
  17.  
  18. sP="HKLM\System\CurrentControlSet\Services\W3SVC\ASP\Parameters\"
  19. vSL="DefaultScriptLanguage" 'SZ
  20. vEM="ScriptErrorMessage" 'SZ
  21.  
  22. Sub Plugin_Initialize 
  23.  If RegPathExists(sP) then
  24.   s=RegReadValue(sp&vsl)
  25.   SetUIElement 1,s
  26.  
  27.   s=RegReadValue(sp&vem)
  28.   SetUIElement 2,s
  29.  else
  30.   Disable
  31.  end if
  32. End Sub
  33.  
  34. Sub Plugin_CheckData(ElementIndex)
  35. End Sub
  36.  
  37. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  38.  s=GetUIElement(1)
  39.  Call RegWriteValue(sp&vsl,s,1)
  40.  
  41.  s=GetUIElement(2)
  42.  Call RegWriteValue(sp&vem,s,1)
  43. End Sub
  44.  
  45. Sub Plugin_Terminate 
  46. End Sub
  47.